home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 21 / CU Amiga Magazine's Super CD-ROM 21 (1998)(EMAP Images)(GB)[!][issue 1998-04].iso / CUCD / Programming / Python-1.4 / Python1.4_Source / Modules / timemodule.c < prev    next >
C/C++ Source or Header  |  1998-01-31  |  12KB  |  526 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  7. Permission to use, copy, modify, and distribute this software and its
  8. documentation for any purpose and without fee is hereby granted,
  9. provided that the above copyright notice appear in all copies and that
  10. both that copyright notice and this permission notice appear in
  11. supporting documentation, and that the names of Stichting Mathematisch
  12. Centrum or CWI or Corporation for National Research Initiatives or
  13. CNRI not be used in advertising or publicity pertaining to
  14. distribution of the software without specific, written prior
  15. permission.
  16.  
  17. While CWI is the initial source for this software, a modified version
  18. is made available by the Corporation for National Research Initiatives
  19. (CNRI) at the Internet address ftp://ftp.python.org.
  20.  
  21. STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
  22. REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  23. MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
  24. CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
  25. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  26. PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  27. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  28. PERFORMANCE OF THIS SOFTWARE.
  29.  
  30. ******************************************************************/
  31.  
  32. /* Time module */
  33.  
  34. #include "allobjects.h"
  35. #include "modsupport.h"
  36. #include "ceval.h"
  37.  
  38. #ifdef HAVE_SELECT
  39. #include "mymath.h"
  40. #endif
  41.  
  42. #ifdef macintosh
  43. #include <time.h>
  44. #else
  45. #include <sys/types.h>
  46. #endif
  47.  
  48. #ifdef _AMIGA
  49. #include <proto/dos.h>
  50. #endif
  51.  
  52. #ifdef QUICKWIN
  53. #include <io.h>
  54. #endif
  55.  
  56. #ifdef HAVE_UNISTD_H
  57. #include <unistd.h>
  58. #endif
  59.  
  60. #ifdef HAVE_SELECT
  61. #include "myselect.h"
  62. #else
  63. #include "mytime.h"
  64. #endif
  65.  
  66. #ifdef HAVE_FTIME
  67. #include <sys/timeb.h>
  68. #endif
  69.  
  70. #ifdef __WATCOMC__
  71. #include <i86.h>
  72. #else
  73. #ifdef MS_WINDOWS
  74. #include <windows.h>
  75. #ifdef MS_WIN16
  76. /* These overrides not needed for Win32 */
  77. #define timezone _timezone
  78. #define tzname _tzname
  79. #define daylight _daylight
  80. #define altzone _altzone
  81. #endif /* MS_WIN16 */
  82. #endif /* MS_WINDOWS */
  83. #endif /* !__WATCOMC__ */
  84.  
  85. /* Forward declarations */
  86. #include "protos/timemodule_protos.h"
  87. static int floatsleep PROTO((double));
  88. static double floattime PROTO(());
  89.  
  90. static object *
  91. time_time(self, args)
  92.     object *self;
  93.     object *args;
  94. {
  95.     double secs;
  96.     if (!getnoarg(args))
  97.         return NULL;
  98.     secs = floattime();
  99.     if (secs == 0.0) {
  100.         err_errno(IOError);
  101.         return NULL;
  102.     }
  103.     return newfloatobject(secs);
  104. }
  105.  
  106. #ifdef HAVE_CLOCK
  107.  
  108. #ifndef CLOCKS_PER_SEC
  109. #ifdef CLK_TCK
  110. #define CLOCKS_PER_SEC CLK_TCK
  111. #else
  112. #define CLOCKS_PER_SEC 1000000
  113. #endif
  114. #endif
  115.  
  116. static object *
  117. time_clock(self, args)
  118.     object *self;
  119.     object *args;
  120. {
  121.     if (!getnoarg(args))
  122.         return NULL;
  123.     return newfloatobject(((double)clock()) / CLOCKS_PER_SEC);
  124. }
  125. #endif /* HAVE_CLOCK */
  126.  
  127. static object *
  128. time_sleep(self, args)
  129.     object *self;
  130.     object *args;
  131. {
  132.     double secs;
  133.     if (!getargs(args, "d", &secs))
  134.         return NULL;
  135.     BGN_SAVE
  136.     if (floatsleep(secs) != 0) {
  137.         RET_SAVE
  138.         return NULL;
  139.     }
  140.     END_SAVE
  141.     INCREF(None);
  142.     return None;
  143. }
  144.  
  145. static object *
  146. time_convert(when, function)
  147.     time_t when;
  148.     struct tm * (*function) PROTO((const time_t *));
  149. {
  150.     struct tm *p;
  151.     errno = 0;
  152.     p = function(&when);
  153.     if (p == NULL) {
  154. #ifdef EINVAL
  155.         if (errno == NULL)
  156.             errno = EINVAL;
  157. #endif
  158.         return err_errno(IOError);
  159.     }
  160.     return mkvalue("(iiiiiiiii)",
  161.                p->tm_year + 1900,
  162.                p->tm_mon + 1, /* Want January == 1 */
  163.                p->tm_mday,
  164.                p->tm_hour,
  165.                p->tm_min,
  166.                p->tm_sec,
  167.                (p->tm_wday + 6) % 7, /* Want Monday == 0 */
  168.                p->tm_yday + 1, /* Want January, 1 == 1 */
  169.                p->tm_isdst);
  170. }
  171.  
  172. static object *
  173. time_gmtime(self, args)
  174.     object *self;
  175.     object *args;
  176. {
  177.     double when;
  178.     if (!getargs(args, "d", &when))
  179.         return NULL;
  180.     return time_convert((time_t)when, gmtime);
  181. }
  182.  
  183. static object *
  184. time_localtime(self, args)
  185.     object *self;
  186.     object *args;
  187. {
  188.     double when;
  189.     if (!getargs(args, "d", &when))
  190.         return NULL;
  191.     return time_convert((time_t)when, localtime);
  192. }
  193.  
  194. static int
  195. gettmarg(args, p)
  196.     object *args;
  197.     struct tm *p;
  198. {
  199.     if (!getargs(args, "(iiiiiiiii)",
  200.              &p->tm_year,
  201.              &p->tm_mon,
  202.              &p->tm_mday,
  203.              &p->tm_hour,
  204.              &p->tm_min,
  205.              &p->tm_sec,
  206.              &p->tm_wday,
  207.              &p->tm_yday,
  208.              &p->tm_isdst))
  209.         return 0;
  210.     if (p->tm_year >= 1900)
  211.         p->tm_year -= 1900;
  212.     p->tm_mon--;
  213.     p->tm_wday = (p->tm_wday + 1) % 7;
  214.     p->tm_yday--;
  215.     return 1;
  216. }
  217.  
  218. #ifdef HAVE_STRFTIME
  219. static object *
  220. time_strftime(self, args)
  221.     object *self;
  222.     object *args;
  223. {
  224.     struct tm buf;
  225.     const char *fmt;
  226.     char *outbuf = 0;
  227.     int i;
  228.  
  229.     if (!PyArg_ParseTuple(args, "s(iiiiiiiii)",
  230.                   &fmt,
  231.                   &(buf.tm_year),
  232.                   &(buf.tm_mon),
  233.                   &(buf.tm_mday),
  234.                   &(buf.tm_hour),
  235.                   &(buf.tm_min),
  236.                   &(buf.tm_sec),
  237.                   &(buf.tm_wday),
  238.                   &(buf.tm_yday),
  239.                   &(buf.tm_isdst)))
  240.         return NULL;
  241.     if (buf.tm_year >= 1900)
  242.         buf.tm_year -= 1900;
  243.     buf.tm_mon--;
  244.     buf.tm_wday = (buf.tm_wday + 1) % 7;
  245.     buf.tm_yday--;
  246.     /* I hate these functions that presume you know how big the output */
  247.     /* will be ahead of time... */
  248.     for (i = 1024 ; i < 8192 ; i += 1024) {
  249.         outbuf = malloc(i);
  250.         if (outbuf == NULL) {
  251.             return err_nomem();
  252.         }
  253.         if (strftime(outbuf, i-1, fmt, &buf) != 0) {
  254.             object *ret;
  255.             ret = newstringobject(outbuf);
  256.             free(outbuf);
  257.             return ret;
  258.         }
  259.         free(outbuf);
  260.     }
  261.     return err_nomem();
  262. }
  263. #endif /* HAVE_STRFTIME */
  264.  
  265. static object *
  266. time_asctime(self, args)
  267.     object *self;
  268.     object *args;
  269. {
  270.     struct tm buf;
  271.     char *p;
  272.     if (!gettmarg(args, &buf))
  273.         return NULL;
  274.     p = asctime(&buf);
  275.     if (p[24] == '\n')
  276.         p[24] = '\0';
  277.     return newstringobject(p);
  278. }
  279.  
  280. static object *
  281. time_ctime(self, args)
  282.     object *self;
  283.     object *args;
  284. {
  285.     double dt;
  286.     time_t tt;
  287.     char *p;
  288.     if (!getargs(args, "d", &dt))
  289.         return NULL;
  290.     tt = (time_t)dt;
  291.     p = ctime(&tt);
  292.     if (p[24] == '\n')
  293.         p[24] = '\0';
  294.     return newstringobject(p);
  295. }
  296.  
  297. static object *
  298. time_mktime(self, args)
  299.     object *self;
  300.     object *args;
  301. {
  302.     struct tm buf;
  303.     time_t tt;
  304.     tt = time(&tt);
  305.     buf = *localtime(&tt);
  306.     if (!gettmarg(args, &buf))
  307.         return NULL;
  308.     tt = mktime(&buf);
  309.     if (tt == (time_t)(-1)) {
  310.         err_setstr(OverflowError, "mktime argument out of range");
  311.         return NULL;
  312.     }
  313.     return newfloatobject((double)tt);
  314. }
  315.  
  316. static struct methodlist time_methods[] = {
  317.     {"time",    time_time},
  318. #ifdef HAVE_CLOCK
  319.     {"clock",    time_clock},
  320. #endif
  321.     {"sleep",    time_sleep},
  322.     {"gmtime",    time_gmtime},
  323.     {"localtime",    time_localtime},
  324.     {"asctime",    time_asctime},
  325.     {"ctime",    time_ctime},
  326.     {"mktime",    time_mktime},
  327. #ifdef HAVE_STRFTIME
  328.     {"strftime",    time_strftime, 1},
  329. #endif
  330.     {NULL,        NULL}        /* sentinel */
  331. };
  332.  
  333. static void
  334. ins(d, name, v)
  335.     object *d;
  336.     char *name;
  337.     object *v;
  338. {
  339.     if (v == NULL)
  340.         fatal("Can't initialize time module -- NULL value");
  341.     if (dictinsert(d, name, v) != 0)
  342.         fatal("Can't initialize time module -- dictinsert failed");
  343.     DECREF(v);
  344. }
  345.  
  346. void
  347. inittime()
  348. {
  349.     object *m, *d;
  350.     m = initmodule("time", time_methods);
  351.     d = getmoduledict(m);
  352. #ifdef HAVE_TZNAME
  353.     tzset();
  354.     ins(d, "timezone", newintobject((long)timezone));
  355. #ifdef HAVE_ALTZONE
  356.     ins(d, "altzone", newintobject((long)altzone));
  357. #else
  358.     ins(d, "altzone", newintobject((long)timezone-3600));
  359. #endif
  360.     ins(d, "daylight", newintobject((long)daylight));
  361.     ins(d, "tzname", mkvalue("(zz)", tzname[0], tzname[1]));
  362. #else /* !HAVE_TZNAME */
  363. #if HAVE_TM_ZONE
  364.     {
  365. #define YEAR ((time_t)((365 * 24 + 6) * 3600))
  366.         time_t t;
  367.         struct tm *p;
  368.         long winterzone, summerzone;
  369.         char wintername[10], summername[10];
  370.         /* XXX This won't work on the southern hemisphere.
  371.            XXX Anybody got a better idea? */
  372.         t = (time((time_t *)0) / YEAR) * YEAR;
  373.         p = localtime(&t);
  374.         winterzone = -p->tm_gmtoff;
  375.         strncpy(wintername, p->tm_zone ? p->tm_zone : "   ", 9);
  376.         wintername[9] = '\0';
  377.         t += YEAR/2;
  378.         p = localtime(&t);
  379.         summerzone = -p->tm_gmtoff;
  380.         strncpy(summername, p->tm_zone ? p->tm_zone : "   ", 9);
  381.         summername[9] = '\0';
  382.         ins(d, "timezone", newintobject(winterzone));
  383.         ins(d, "altzone", newintobject(summerzone));
  384.         ins(d, "daylight", newintobject((long)(winterzone != summerzone)));
  385.         ins(d, "tzname",  mkvalue("(zz)", wintername, summername));
  386.     }
  387. #endif /* HAVE_TM_ZONE */
  388. #endif /* !HAVE_TZNAME */
  389. }
  390.  
  391.  
  392. /* Implement floattime() for various platforms */
  393.  
  394. static double
  395. floattime()
  396. {
  397.     /* There are three ways to get the time:
  398.        (1) gettimeofday() -- resolution in microseconds
  399.        (2) ftime() -- resolution in milliseconds
  400.        (3) time() -- resolution in seconds
  401.        In all cases the return value is a float in seconds.
  402.        Since on some systems (e.g. SCO ODT 3.0) gettimeofday() may
  403.        fail, so we fall back on ftime() or time().
  404.        Note: clock resolution does not imply clock accuracy! */
  405. #ifdef HAVE_GETTIMEOFDAY
  406.     {
  407.     struct timeval t;
  408. #ifdef GETTIMEOFDAY_NO_TZ
  409.     if (gettimeofday(&t) == 0)
  410.         return (double)t.tv_sec + t.tv_usec*0.000001;
  411. #else /* !GETTIMEOFDAY_NO_TZ */
  412.     if (gettimeofday(&t, (struct timezone *)NULL) == 0)
  413.         return (double)t.tv_sec + t.tv_usec*0.000001;
  414. #endif /* !GETTIMEOFDAY_NO_TZ */
  415.     }
  416. #endif /* !HAVE_GETTIMEOFDAY */
  417.     {
  418. #ifdef HAVE_FTIME
  419.     struct timeb t;
  420.     ftime(&t);
  421.     return (double)t.time + (double)t.millitm * (double)0.001;
  422. #else /* !HAVE_FTIME */
  423.     time_t secs;
  424.     time(&secs);
  425.     return (double)secs;
  426. #endif /* !HAVE_FTIME */
  427.     }
  428. }
  429.  
  430.  
  431. /* Implement floatsleep() for various platforms.
  432.    When interrupted (or when another error occurs), return -1 and
  433.    set an exception; else return 0. */
  434.  
  435. static int
  436. #ifdef MPW
  437. floatsleep(double secs)
  438. #else
  439. floatsleep(secs)
  440.     double secs;
  441. #endif /* MPW */
  442. {
  443. #ifdef HAVE_SELECT
  444.     struct timeval t;
  445.     double frac;
  446.  
  447. #ifdef AMITCP
  448.     /* select needs bsdsocket.library with AmiTCP -- I.J. */
  449.     if(!checkbsdsocketlib())
  450.     {
  451.         /* no bsdsocket.library-- use dos/Delay() */
  452.         err_clear();
  453.         Delay((long)(secs*50));        /* XXX Can't interrupt this sleep */
  454.         return 0;
  455.     }
  456. #endif
  457.  
  458.     frac = fmod(secs, 1.0);
  459.     secs = floor(secs);
  460.     t.tv_sec = (long)secs;
  461.     t.tv_usec = (long)(frac*1000000.0);
  462.     if (select(0, (fd_set *)0, (fd_set *)0, (fd_set *)0, &t) != 0) {
  463.         err_errno(IOError);
  464.         return -1;
  465.     }
  466. #else /* !HAVE_SELECT */
  467. #ifdef macintosh
  468. #define MacTicks    (* (long *)0x16A)
  469.     long deadline;
  470.     deadline = MacTicks + (long)(secs * 60.0);
  471.     while (MacTicks < deadline) {
  472.         if (sigcheck())
  473.             return -1;
  474.     }
  475. #else /* !macintosh */
  476. #ifdef __WATCOMC__
  477.     /* XXX Can't interrupt this sleep */
  478.     delay((int)(secs * 1000 + 0.5));  /* delay() uses milliseconds */
  479. #else /* !__WATCOMC__ */
  480. #ifdef MSDOS
  481.     struct timeb t1, t2;
  482.     double frac;
  483.     extern double fmod PROTO((double, double));
  484.     extern double floor PROTO((double));
  485.     if (secs <= 0.0)
  486.         return;
  487.     frac = fmod(secs, 1.0);
  488.     secs = floor(secs);
  489.     ftime(&t1);
  490.     t2.time = t1.time + (int)secs;
  491.     t2.millitm = t1.millitm + (int)(frac*1000.0);
  492.     while (t2.millitm >= 1000) {
  493.         t2.time++;
  494.         t2.millitm -= 1000;
  495.     }
  496.     for (;;) {
  497. #ifdef QUICKWIN
  498.         _wyield();
  499. #endif
  500.         if (sigcheck())
  501.             return -1;
  502.         ftime(&t1);
  503.         if (t1.time > t2.time ||
  504.             t1.time == t2.time && t1.millitm >= t2.millitm)
  505.             break;
  506.     }
  507. #else /* !MSDOS */
  508. #ifdef MS_WIN32
  509.     /* XXX Can't interrupt this sleep */
  510.     Sleep((int)(secs*1000));
  511. #else /* !MS_WIN32 */
  512. #ifdef _AMIGA
  513.     /* XXX Can't interrupt this sleep */
  514.     Delay((long)(secs*50));
  515. #else
  516.     /* XXX Can't interrupt this sleep */
  517.     sleep((int)secs);
  518. #endif /* _AMIGA */
  519. #endif /* !MS_WIN32 */
  520. #endif /* !MSDOS */
  521. #endif /* !__WATCOMC__ */
  522. #endif /* !macintosh */
  523. #endif /* !HAVE_SELECT */
  524.     return 0;
  525. }
  526.